home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 9 / 009.d81 / q & a < prev    next >
Text File  |  2022-08-26  |  6KB  |  291 lines

  1.  
  2.       QUESTIONS AND ANSWERS
  3.  
  4.  
  5.  
  6. Lieber 46032
  7.  
  8.  
  9.  
  10. I noticed in a recent issue the use of
  11.  
  12. a colon in a way I hadn't seen before
  13.  
  14. and I just wondered what it meant. For
  15.  
  16. example:
  17.  
  18.           10 PRINT 'Hi'
  19.           20 :
  20.           30 END
  21.  
  22.  
  23. If it just a separator, could other
  24.  
  25. marks be used as well?
  26.  
  27.  
  28. >Well, you're right, it is used just
  29.  as a separator, but it is the only
  30.  character which can be used in this
  31.  way.
  32.  
  33. - - - - - - - - - - - - - - - - - - -
  34.  
  35.  
  36. Smith 32741
  37.  
  38.  I am having a problem. Every so often
  39.  
  40. when I use the joystick to scroll
  41.  
  42. different articles, it jumps to the
  43.  
  44. printing option. Why is it doing this?
  45.  
  46. Is there anything I can do about it?
  47.  
  48. If so, what?
  49.  
  50.                    DEREK SMITH
  51.                    1701 MABBETTE ST.
  52.                    APT. 14-208
  53.                    KISSIMMEE,FL 32741
  54.  
  55.  
  56. P.S.  If I put a payload program on
  57.       this disk, should I put it on
  58.       the front or back of the disk?
  59.  
  60.  
  61. >First of all, we would prefer you to
  62.  place your PAYLOAD submissions on the
  63.  front side of the disk.  Please note
  64.  that now you CREATE your own
  65.  FEEDBACK disk <see FEEDBACK DISK
  66.  MAKER on main menu>.
  67.  
  68.  Secondly, a few other people have
  69.  told us that they are suddenly
  70.  thrown into the hardcopy option
  71.  without wanting to be there.  We have
  72.  tested this on our machines and have
  73.  not ever jumped to the printer
  74.  option.  All I can say is that this
  75.  is still being looked at.
  76.  
  77.  
  78. - - - - - - - - - - - - - - - - - - -
  79.  
  80.  
  81.  
  82. Peters 32806
  83.  
  84.    I have only one question.  It is
  85.  
  86. about DATA statements. How in the
  87.  
  88. world do you use them? The instruction
  89.  
  90. manual doesn't explain it too well. I
  91.  
  92. have no idea how they work. My
  93.  
  94. programs are getting a little dull
  95.  
  96. without them. I would appreciate it
  97.  
  98. if you could show me how to use them.
  99.  
  100.  
  101.                   THANKS,
  102.  
  103.                   Sean Peters
  104.                   2423 Timberlake Dr.
  105.                   Orlando, FL  32806
  106.  
  107.  
  108.  
  109. >DATA statements are for data storage
  110.  in your programs.  For example, a
  111.  DATA statement that would contain
  112.  four names might look like this:
  113.  
  114. 990 DATA "BOB","CAROL","JIM","SPOT"
  115.  
  116.  
  117.  Now, if you execute a statement like
  118.  this,
  119.  
  120. 980 READ A$,B$,C$,D$
  121.  
  122.  the contents of these variables would
  123.  be:
  124.  
  125.    A$="BOB"
  126.    B$="CAROL"
  127.    C$="JIM"
  128.    D$="SPOT"
  129.  
  130.  Just think of DATA statements as a
  131.  place to keep information that your
  132.  program is going to use.
  133.  
  134. 300 DATA 234,191,112,0,40,80,96
  135.  
  136.  When you see a data statement that is
  137.  full of numbers, you can be pretty
  138.  sure that the program is using them
  139.  to build sprites, or play music, or
  140.  POKE a machine language routine into
  141.  memory.  It is true that programs
  142.  that are full of these types of DATA
  143.  statements are less dull than 'plain
  144.  vanilla BASIC' programs, but that is
  145.  because of the sprites, or the music,
  146.  or what ever special effect the data
  147.  was for, and not because they were
  148.  produced with DATA statements.
  149.  
  150. - - - - - - - - - - - - - - - - - - -
  151.  
  152.  
  153.  
  154. Christian 78227
  155.  
  156.  
  157.   I collect music for the 64 and have
  158.  
  159. many disks that I play for easy
  160.  
  161. listening in the evenings.  You have
  162.  
  163. some very good music on your disks and
  164.  
  165. I would like to put it with my music
  166.  
  167. disks and still haven't figured how to
  168.  
  169. get it off the LOADSTAR disk.  All
  170.  
  171. hints and clues appreciated.
  172.  
  173.  
  174.  
  175.                Phyllis Christian
  176.                8010 Latigo Dr.
  177.                San Antonio, TX  78227
  178.  
  179.  
  180. >We're glad you asked that!
  181.  We have been using several different
  182.  musical systems in LOADSTAR.  On the
  183.  early issues, the music was contained
  184.  in the file ROUTINES.  Later, we put
  185.  the music in a separate file called
  186.  ROMUSIC, and the music player in one
  187.  called SIDIRQ.V2 or JEFFIRQ.V2.
  188.  
  189.  In the early versions, all you have
  190.  to do to hear the music is
  191.  LOAD"ROUTINES",8,1 then SYS 49152.
  192.  In the later versions, you need to
  193.  LOAD"ROMUSIC",8,1 then LOAD"SIDIRQV2"
  194.  or "JEFFIRQ.V2",8,1 then POKE the
  195.  address of ROMUSIC into 49162 and
  196.  49163 then SYS 49152.
  197.  
  198.  Our music will continue to play in
  199.  the background until you RESTORE the
  200.  computer or load something over the
  201.  music or music player.  You will be
  202.  able to write, load, save, and run
  203.  BASIC programs while our music is
  204.  playing.  One warning:  NEVER SYS
  205.  49152 while our music is playing.
  206.  Your computer will "HANG" and you
  207.  will have to turn the power off.
  208.  
  209.  LOADSTAR will soon be publishing the
  210.  MR. M. DISK (M. stands for music).
  211.  This disk will be full of music for
  212.  your listening pleasure (including
  213.  most of the tunes that have appeared
  214.  as LOADSTAR background) as well as
  215.  a music entering system so that you
  216.  may write your own music or transpose
  217.  music from sheet music.
  218.  
  219. - - - - - - - - - - - - - - - - - - -
  220.  
  221.  
  222.  
  223. Locke 90745
  224.  
  225.  
  226.    I have a problem which gives me
  227.  
  228. quite a bit of trouble.
  229.  
  230.    I LOAD a disk, view directory, and
  231.  
  232. LOAD a file. The file loads, lists,
  233.  
  234. and when I type RUN, I get 'SYNTAX
  235.  
  236. ERROR IN 0'.
  237.  
  238.    What is wrong?
  239.  
  240.  
  241.                Roy E. Locke
  242.                187 W 234th Street
  243.                Carson, CA  90745
  244.  
  245.  
  246. >It doesn't sound like you are doing
  247.  anything wrong.  The only thing we
  248.  can come up with is that somehow,
  249.  you are trying to RUN the directory.
  250.  Try typing NEW after you look at the
  251.  directory and are ready to LOAD a
  252.  file.
  253. - - - - - - - - - - - - - - - - - - -
  254.  
  255.  
  256.  
  257. QUOSIG 94587
  258.  
  259.  
  260.      My parents bought my sister and I
  261.  
  262. this subscription to LOADSTAR and we
  263.  
  264. would like to know how both of us can
  265.  
  266. make comments?  What would you enter
  267.  
  268. for the last name?  What would you
  269.  
  270. enter for zip code?
  271.  
  272.  
  273.                - Kevin Quosig
  274.                - Stacey Quosig
  275.                  2038 Hartnell St.
  276.                  Union City, CA  94587
  277.  
  278.  
  279. >You can each put your comments in
  280.  STARLINE.  One of you type your
  281.  comments in first and sign your name
  282.  when you finish.  Then, the other of
  283.  you put in your comments and then
  284.  sign your name.  When you are both
  285.  finished, save your comments as you
  286.  would normally.
  287.  
  288.  
  289. ----------- End of Article -----------
  290.  
  291.